projects
/
xen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
825c921
)
xend: Fix writing domain's VDI UUID into domain state file.
author
Keir Fraser
<keir.fraser@citrix.com>
Thu, 20 Mar 2008 17:45:00 +0000
(17:45 +0000)
committer
Keir Fraser
<keir.fraser@citrix.com>
Thu, 20 Mar 2008 17:45:00 +0000
(17:45 +0000)
Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
tools/python/xen/xend/XendConfig.py
patch
|
blob
|
history
diff --git
a/tools/python/xen/xend/XendConfig.py
b/tools/python/xen/xend/XendConfig.py
index 0855f01c126564cbd88d8fa08badfc77630e9950..9915fb84621022932021af34b7e91a7f64ec24d7 100644
(file)
--- a/
tools/python/xen/xend/XendConfig.py
+++ b/
tools/python/xen/xend/XendConfig.py
@@
-991,7
+991,7
@@
class XendConfig(dict):
dev_type, dev_cfg = self['devices'][dev_uuid]
is_bootable = dev_cfg.get('bootable', 0)
config.append(['bootable', int(is_bootable)])
- config.append(['VDI'
], dev_cfg.get('VDI', '')
)
+ config.append(['VDI'
, dev_cfg.get('VDI', '')]
)
sxpr.append(['device', config])